-
Re: COUNTIF using IFERROR and MONTHs
You bet. Let me see. 1) You first picked your range and then you need the criteria. In this case you have multiple criteria so you start with OR, followed by the IFERROR in case there was a data erro…1 · -
Re: Another question about nested IF statements!
Sure thing: =IF(ISBLANK([Start Date]@row), "Not Started", IF(AND([% Complete]@row <> 1, [End Date]@row < TODAY()), "Overdue", IF([% Complete]@row = 1, "Complete"…1 · -
Re: Another question about nested IF statements!
Try this =IF(AND([% Complete]@row <> 1, [End Date]@row < TODAY()), "Overdue", IF([% Complete]@row = 1, "Complete", IF([% Complete]@row = 0, "Not Started", "…1 · -
Re: Countif not containing specific text
Try this: =COUNTIFS([Aging]:[Aging], "Red", Project:Project, NOT(FIND("spring", LOWER(@cell)) >0))2 ·